home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH16.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-29  |  139 b   |  9 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  int age;
  5.  printf("Please enter your age: ");
  6.  scanf("%d", &age);
  7.  printf("\nYour age is %d",age);
  8.  }
  9.